009e5e40b1d33af0eaa2b8e94f635bf4b2c97721,platform/platform-impl/src/com/intellij/openapi/wm/impl/status/StatusBarUI.java,BackgroundPainter,paintBorder,#Component#Graphics#number#number#number#number#,58

Before Change


      g2d.setColor(UIUtil.isUnderDarcula() ? BORDER_TOP_COLOR.darker().darker() : BORDER_TOP_COLOR);
      g2d.drawLine(0, 0, width, 0);

      g2d.setColor(UIUtil.isUnderDarcula() ? BORDER_BOTTOM_COLOR.darker().darker() : BORDER_BOTTOM_COLOR);
      g2d.drawLine(0, height, width, height);

      g2d.dispose();

After Change


      g2d.fillRect(0, 0, width, height);

      Color topColor = UIUtil.isUnderDarcula() ? BORDER_TOP_COLOR.darker().darker() : BORDER_TOP_COLOR;
      if (SystemInfo.isMac && UIUtil.isUnderIntelliJLaF()) {
        topColor = Gray.xC9;
      }
      g2d.setColor(topColor);
      g2d.drawLine(0, 0, width, 0);

      if (!UIUtil.isUnderDarcula()) {
        g2d.setColor(BORDER_BOTTOM_COLOR);
        g2d.drawLine(0, height, width, height);
      }